# VUE Styleguide
# Options-Order
https://v2.vuejs.org/v2/style-guide/#Component-instance-options-order-recommended (opens new window)
# Modified Version
- Name
- Components
- Props
- Setup
- Data
- Computed
- Methods
- watch
- Lifecycle-Hooks
beforeCreatecreatedbeforeMountmountedbeforeUpdateupdatedactivateddeactivatedbeforeDestroydestroyed
# Element-Attributes-Order
https://v2.vuejs.org/v2/style-guide/#Element-attribute-order-recommended (opens new window)
- List v-for
- Conditionals v-if etc.
- id
- ref
- key
- v-model
- @events
- :
- ...
maybe also order alphabetically
← Vue Mixins VUE Links →